type golang.org/x/tools/txtar.node
10 uses
golang.org/x/tools/txtar (current package)
fs.go#L26: root := &node{fileinfo: fileinfo{path: ".", mode: readOnlyDir}}
fs.go#L27: fsys := &filesystem{a, map[string]*node{root.path: root}}
fs.go#L56: nodes map[string]*node
fs.go#L60: type node struct {
fs.go#L67: var _ fs.DirEntry = (*node)(nil)
fs.go#L78: n := &node{idx: idx, fileinfo: fileinfo{path: name, size: len(file.Data), mode: readOnly}}
fs.go#L87: func insert(fsys *filesystem, n *node) error {
fs.go#L104: func directory(fsys *filesystem, dir string) (*node, error) {
fs.go#L109: n := &node{fileinfo: fileinfo{path: dir, mode: readOnlyDir}}
fs.go#L118: func dataOf(fsys *filesystem, n *node) ([]byte, error) {